* {
    box-sizing: border-box;
  }
  .map{
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
  scale: 1;
  z-index: -100;
}
  .slider {
    width: 300px;
    text-align: center;
    overflow: hidden;
  }
  
  .slides {
    display: flex;
    
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    
    
    
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    
    /*
    scroll-snap-points-x: repeat(300px);
    scroll-snap-type: mandatory;
    */
  }
  .slides::-webkit-scrollbar {
    width: 10px;
    height: 10px;
  }
  .slides::-webkit-scrollbar-thumb {
    background: black;
    border-radius: 10px;
  }
  .slides::-webkit-scrollbar-track {
    background: transparent;
  }
  .slides > div {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    margin-right: 50px;
    border-radius: 10px;
    background: #eee;
    transform-origin: center center;
    transform: scale(1);
    transition: transform 0.5s;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 100px;
  }
  .slides > div:target {
    transform: scale(0.8); 
  }
  .author-info {
    background: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 0.2rem;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
  }
  .author-info a {
    color: white;
  }
  img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -100;
  }
  
  .slider > a {
    display: inline-flex;
    width: 1.5rem;
    height: 1.5rem;
    background: white;
    text-decoration: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 1.25rem 0.5rem 0;
    position: relative;
    scale: 2;
  }
  .slider > a:active {
    top: 1px;
  }
  .slider > a:focus {
    background: white;
  }
  
  /* Don't need button navigation */
  @supports (scroll-snap-type) {
    .slider > a {
      display: none;
    }
  }
  
  html, body {
    height: 100%;
    overflow: hidden;
    background-color: black;
  }
  body{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    background-color: dark;
  }
  .text{
    position: absolute;
    color: white;
    z-index: 10;
    top: 100%;
    font-size: 50px;
}
.back{
  position: grid;
  z-index: 100;
  left: 100%;
  background-color: green;
  height: 75px;
  width: 100px;
  text-align: center;
  border-radius: 20%;
}
h1{
  color: white;
}
h6{
  color: white;
  font-size: 20px;
  z-index: 10;
  top: 110%;
  position: absolute;
}
